home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_directives.inc < prev    next >
Encoding:
Text File  |  1999-07-09  |  230 b   |  14 lines

  1. <%
  2. ' Support multiple character sets.
  3. Session.Codepage = 65001
  4. Response.Charset = "UTF-8"
  5.  
  6. Response.CacheControl = "no-cache"
  7.  
  8. 'HTTP/1.0 Compatibility
  9. Response.AddHeader "Pragma", "no-cache"
  10.  
  11. Response.Expires = 0
  12.  
  13. %>
  14.